home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Viewers / VideoStreamV1.0 / Source / Controller.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  699 b   |  31 lines

  1. /*
  2.  * Copyright 1994, Black Adder Research, Inc.  This source code may be
  3.  * redistributed and modified with one restriction - do not claim that 
  4.  * you wrote it.
  5.  *
  6.  * Black Adder Research, Inc.
  7.  * 730 Norell Ave. North
  8.  * Stillwater, MN  55082
  9.  * 
  10.  */
  11.  
  12.  
  13. #import <objc/Object.h>
  14. #import <sys/param.h>
  15. #import <appkit/graphics.h>
  16.  
  17. @interface Controller:Object
  18. {
  19.     /* empty */
  20. }
  21.  
  22. - openRequest:sender;
  23. - (BOOL)openFile:(char *)srcName;
  24. - getAVIFrameSize: (NXSize *) fSize forFile: (char *) aviFile;
  25. - getMPEGFrameSize: (NXSize *) fSize forFile: (char *) mpegFile;
  26. - playAgain: sender;
  27. - (BOOL)appAcceptsAnotherFile:sender;
  28. - (int) appOpenFile:(const char *)filename type:(const char *)aType;
  29.  
  30. @end
  31.